home *** CD-ROM | disk | FTP | other *** search
File List | 1989-04-11 | 10.9 KB | 397 lines |
- ' *******************************************************************
- ' * *
- ' * *
- ' * T H E R E M I N . B A S *
- ' * *
- ' * by Sterling K. Webb & SKWare One, Inc. *
- ' * Copyright 1989 Antic Publishing *
- ' * *
- ' * *
- ' *******************************************************************
- '
- ' for the making of a mouse
- Dim Cursor$(16),Mask$(16)
- ' parameters for the three resolutions
- Yf%=(Xbios(4)\2)+1
- Xf%=((Xbios(4)+1)\2)+1
- Max_x%=Xf%*319+(Xf%-1)
- Max_y%=Yf%*199+(Yf%-1)
- ' default typesize
- If Xbios(4)<2
- Ty%=6
- Else
- Ty%=13
- Endif
- Deftext 1,0,0,Ty%
- ' save user's palette
- U$=""
- For I%=0 To 15
- U$=U$+Mki$(Xbios(7,I%,-1))
- Next I%
- ' set colors for the three resolutions
- If Xbios(4)=0
- Setcolor 0,0,0,0
- Setcolor 1,7,0,0
- Setcolor 15,7,7,7
- Setcolor 2,7,7,0
- For I%=3 To 14
- Setcolor I%,7,7,0
- Next I%
- Else
- If Xbios(4)=1
- Setcolor 0,0,0,0
- Setcolor 1,7,0,0
- Setcolor 3,7,7,7
- Setcolor 2,7,7,0
- Else
- Setcolor 0,0,0,0
- Setcolor 1,7,7,7
- Endif
- Endif
- ' translation unit for frequency value
- Unit=4048/(Max_x%+1)
- ' four pitch scales for mouse
- Dim Pitch_button$(4)
- Pitch_button$(0)=" Theremin "
- Pitch_button$(1)=" Scale "
- Pitch_button$(2)=" Whistle "
- Pitch_button$(3)=" Multi-Band "
- ' define a new mouse
- Gosub Mouse(3)
- Defmouse Mouse$
- ' draw the screen
- ' first, the desktop
- Deffill 2,2,8\Yf%
- Gosub Grow_box(Max_x%\2,Max_y%\2,2,2,0,0,Max_x%,Max_y%)
- @Pbox(0,0,Max_x%,Max_y%)
- ' pitch wand
- @Rbox(280,28,315,34)
- ' pitch condenser
- @Rbox(130,9,265,49)
- ' pitch insulators
- @Rbox(265,14,275,45)
- @Rbox(275,14,285,45)
- ' case
- @Rbox(30,49,265,179)
- ' volume wand
- @Rbox(82,4,88,45)
- ' volume insulators
- @Rbox(65,40,105,50)
- @Rbox(65,50,105,59)
- ' volume condenser
- @Rbox(42,60,128,99)
- @Border_box(53,70,118,89)
- Deftext 2,0,0,Ty%
- @Center(53*Xf%,118*Xf%,82*Yf%,"Volume")
- ' base
- @Rbox(27,179,273,183)
- @Rbox(20,183,279,189)
- ' pitch control panel
- @Border_box(140,19,255,139)
- @Border_box(150,26,245,50)
- @Center(150*Xf%,245*Xf%,41*Yf%,"Pitch")
- Deftext 1,0,0,Ty%
- ' pitch scale selector buttons
- For I%=0 To 3
- @Radio_button(148*Xf%+48*(Xf%-1),59*Yf%+I%*20*Yf%,Pitch_button$(I%))
- Next I%
- ' default to Theremin and Sound ON
- I%=0
- @Push_this_button(148*Xf%+48*(Xf%-1),59*Yf%+I%*20*Yf%,Pitch_button$(I%))
- @Radio_button(148*Xf%+24*(Xf%-1),150*Yf%,"POWER")
- @Push_this_button(148*Xf%+24*(Xf%-1),150*Yf%,"POWER")
- @Radio_button(205*Xf%+24*(Xf%-1),150*Yf%,"SOUND")
- @Push_this_button(205*Xf%+24*(Xf%-1),150*Yf%,"SOUND")
- ' name plate
- @Rbox(43,103,128,174)
- @Rivet(47*Xf%,107*Yf%)
- @Rivet(124*Xf%,107*Yf%)
- @Rivet(47*Xf%,170*Yf%)
- @Rivet(124*Xf%,170*Yf%)
- Deftext 2,4,0,Ty%
- @Center(43*Xf%,128*Xf%,118*Yf%,"Universal")
- @Center(43*Xf%,128*Xf%,128*Yf%,"Theremin")
- @Center(43*Xf%,128*Xf%,138*Yf%,"Company")
- Deftext 3,0,0,Ty%
- @Center(43*Xf%,128*Xf%,155*Yf%,"SKWare")
- @Center(43*Xf%,128*Xf%,165*Yf%,"One")
- If Ty%=6
- Deftext 0,0,0,4
- Else
- Deftext 0,0,0,6
- Endif
- Graphmode 2
- A1$=Chr$(189)+" 1989 Antic Publishing"
- @Center(80*Xf%,256*Xf%,197*Yf%,A1$)
- Graphmode 1
- Deftext 1,0,0,Ty%
- ' sound routine
- Do
- ' read volume from y-coordinate of mouse
- Vol=((Max_y%-Mousey)\22*Yf%)+6
- If Button%=0
- Per=Int((Max_x%+1-Mousex)*Unit)+12
- Sound 1,Vol,#Per
- Endif
- If Button%=1
- Noet=Int((Mousex/(Max_x%+1))*96)+1
- Oct=(Noet\12)+1
- Noet=(Noet Mod 12)+1
- Sound 1,Vol,Noet,Oct
- Endif
- If Button%=2
- Per=4*Int(Log(Max_x%+1-Mousex)*Unit)+125
- Sound 1,Vol,#Per
- Endif
- If Button%=3
- Per=Int((Max_x%+1-Mousex)*Unit)+12
- Per=Per*Log(Per)
- Sound 1,Vol,#Per
- Endif
- ' check for buttons clicked
- If Mousek=1
- Gosub Check_it_out
- Endif
- Loop
- Procedure Check_it_out
- ' check the pitch scale selector buttons
- Gosub Pitch_scale_select
- ' check the power switch
- @In_box(148*Xf%+24*(Xf%-1),150*Yf%,148*Xf%+24*(Xf%-1)+42+14*(Xf%-1),160*Yf%)
- If In_box%=True And Mousek=1
- Gosub Switch_off
- Endif
- ' check the sound switch
- @In_box(205*Xf%+24*(Xf%-1),150*Yf%,205*Xf%+24*(Xf%-1)+42+14*(Xf%-1),160*Yf%)
- If In_box%=True And Mousek=1
- @Click_stopper
- ' turn the sound switch OFF
- @Push_this_button(205*Xf%+24*(Xf%-1),150*Yf%,"SOUND")
- Wave 0
- ' while the sound switch is off, keep checking the other buttons...
- Repeat
- ' check if the sound switch is turned back on
- @In_box(205*Xf%+24*(Xf%-1),150*Yf%,205*Xf%+24*(Xf%-1)+42+14*(Xf%-1),160*Yf%)
- If In_box%=True And Mousek=1
- Flag%=1
- Endif
- Exit If Flag%=1
- ' check the pitch scale selector buttons
- Gosub Pitch_scale_select
- ' check the power switch
- @In_box(148*Xf%+24*(Xf%-1),150*Yf%,148*Xf%+24*(Xf%-1)+42+14*(Xf%-1),160*Yf%)
- If In_box%=True And Mousek=1
- Gosub Switch_off
- Endif
- Until In_box%=True And Mousek=1
- Clr Flag%
- @Click_stopper
- ' turn the sound switch back ON
- @Push_this_button(205*Xf%+24*(Xf%-1),150*Yf%,"SOUND")
- Endif
- Return
- Procedure Pitch_scale_select
- ' each in turn...
- For I%=0 To 3
- @In_box(148*Xf%+48*(Xf%-1),59*Yf%+I%*20*Yf%,148*Xf%+48*(Xf%-1)+116,59*Yf%+I%*20*Yf%+10*Yf%)
- If In_box%=True And Mousek=1
- ' old button OFF
- @Push_this_button(148*Xf%+48*(Xf%-1),59*Yf%+Button%*20*Yf%,Pitch_button$(Button%))
- Button%=(Mousey-(59*Yf%))\(20*Yf%)
- ' new button ON
- @Push_this_button(148*Xf%+48*(Xf%-1),59*Yf%+Button%*20*Yf%,Pitch_button$(Button%))
- Gosub Click_stopper
- Endif
- Next I%
- Return
- Procedure Switch_off
- ' turn the power switch OFF
- @Push_this_button(148*Xf%+24*(Xf%-1),150*Yf%,"POWER")
- ' power pop
- Sound 1,15,#Per,1
- Wave 56,7,11,10,10
- Wave 0,0
- Pause 20
- Deffill 2,2,8\Yf%
- @Pbox(0,0,Max_x%,Max_y%)
- Gosub Shrink_box(Max_x%\2,Max_y%\2,2,2,0,0,Max_x%,Max_y%)
- Void Xbios(6,L:Varptr(U$))
- Defmouse 0
- Edit
- Return
- ' GEM's visual
- Procedure Grow_box(C1%,C2%,C3%,C4%,C5%,C6%,C7%,C8%)
- Dpoke Gcontrl,73
- Dpoke Gcontrl+2,8
- Dpoke Gcontrl+4,1
- Dpoke Gcontrl+6,0
- Dpoke Gcontrl+8,0
- Dpoke Gintin,C1%
- Dpoke Gintin+2,C2%
- Dpoke Gintin+4,C3%
- Dpoke Gintin+6,C4%
- Dpoke Gintin+8,C5%
- Dpoke Gintin+10,C6%
- Dpoke Gintin+12,C7%
- Dpoke Gintin+14,C8%
- Gemsys ! Grow a wibble box
- Return
- ' inverse of above...
- Procedure Shrink_box(C1%,C2%,C3%,C4%,C5%,C6%,C7%,C8%)
- Dpoke Gcontrl,74
- Dpoke Gcontrl+2,8
- Dpoke Gcontrl+4,1
- Dpoke Gcontrl+6,0
- Dpoke Gcontrl+8,0
- Dpoke Gintin,C1%
- Dpoke Gintin+2,C2%
- Dpoke Gintin+4,C3%
- Dpoke Gintin+6,C4%
- Dpoke Gintin+8,C5%
- Dpoke Gintin+10,C6%
- Dpoke Gintin+12,C7%
- Dpoke Gintin+14,C8%
- Gemsys ! Un-grow a wibble box
- Return
- ' centers text between starting and finishing x-coordinates
- Procedure Center(Sx%,Fx%,Tl%,Text$)
- Pos%=Sx%+Int(((Fx%-Sx%)/2)-((Len(Text$)/2)*8))
- Text Pos%,Tl%,Text$
- Return
- ' don't all talk at once, dammit!
- Procedure Click_stopper
- Repeat
- Until Mousek=0
- Return
- ' this is a simplified equivalent of GRAF_WATCHBOX,
- ' but does not require objects in trees or a RSC file.
- Procedure In_box(C1%,C2%,C3%,C4%)
- Z%=False
- If Mousex=>C1% And Mousex=<C3% And Mousey=>C2% And Mousey=<C4%
- Z%=True
- Endif
- In_box%=Z%
- Return
- ' highlights a button
- Procedure Button(C1%,C2%,C3%,C4%)
- Get C1%,C2%,C3%,C4%,Inv$
- Put C1%,C2%,Inv$,12
- @Click_stopper
- Return
- ' draws the radio button, given a starting x-and-y-coordinate and button text
- Procedure Radio_button(C1%,C2%,C$)
- C3%=C1%+Len(C$)*8+2+(Xf%-1)*14
- C4%=C2%+10*Yf%
- @Blank_it
- If Rez%=1
- Pbox C1%-2,C2%-2,C3%+4,C4%+3
- Else
- Pbox C1%-2,C2%-2,C3%+3,C4%+3
- Endif
- Box C1%,C2%,C3%,C4%
- Box C1%-2,C2%-2,C3%+2,C4%+2
- Box C1%-2,C2%-2,C3%+3,C4%+3
- If Rez%=1
- Box C1%-2,C2%-2,C3%+4,C4%+3
- Endif
- Text C1%+1+(Xf%-1)*7,C2%+8*Yf%,C$
- Return
- ' highlights the radio button when pushed...
- Procedure Push_this_button(C1%,C2%,C$)
- C3%=C1%+Len(C$)*8+2+(Xf%-1)*14
- C4%=C2%+10*Yf%
- Get C1%,C2%,C3%,C4%,Inv$
- Put C1%,C2%,Inv$,12
- Return
- Procedure Box(C1%,C2%,C3%,C4%)
- Box C1%,C2%,C3%,C4%
- Return
- Procedure Pbox(C1%,C2%,C3%,C4%)
- Pbox C1%,C2%,C3%,C4%
- Return
- Procedure Blank_it
- Deffill 0,2,8
- Return
- Procedure Write_color
- Color 1
- Return
- Procedure Mouse(A%)
- Let Mouse$=""
- Let Mouse$=Mki$(1)+Mki$(15)+Mki$(0)+Mki$(0)+Mki$(A%)
- ' here's the cursor
- ' its pattern fairly visible in this format
- Cursor$(0)=Mki$(Val("&X0000000000000000"))
- Cursor$(1)=Mki$(Val("&X0000000001111110"))
- Cursor$(2)=Mki$(Val("&X0000000011111100"))
- Cursor$(3)=Mki$(Val("&X0000000111111000"))
- Cursor$(4)=Mki$(Val("&X0000001111111100"))
- Cursor$(5)=Mki$(Val("&X0000000011111000"))
- Cursor$(6)=Mki$(Val("&X0000000111110000"))
- Cursor$(7)=Mki$(Val("&X0000001111100000"))
- Cursor$(8)=Mki$(Val("&X0000011111000000"))
- Cursor$(9)=Mki$(Val("&X0000111111110000"))
- Cursor$(10)=Mki$(Val("&X0000011111000000"))
- Cursor$(11)=Mki$(Val("&X0000111100000000"))
- Cursor$(12)=Mki$(Val("&X0001110000000000"))
- Cursor$(13)=Mki$(Val("&X0011000000000000"))
- Cursor$(14)=Mki$(Val("&X0100000000000000"))
- Cursor$(15)=Mki$(Val("&X0000000000000000"))
- ' here's the mask
- Mask$(0)=Mki$(Val("&X0000000001111111"))
- Mask$(1)=Mki$(Val("&X0000000011111111"))
- Mask$(2)=Mki$(Val("&X0000000111111110"))
- Mask$(3)=Mki$(Val("&X0000001111111110"))
- Mask$(4)=Mki$(Val("&X0000011111111110"))
- Mask$(5)=Mki$(Val("&X0000011111111100"))
- Mask$(6)=Mki$(Val("&X0000001111111000"))
- Mask$(7)=Mki$(Val("&X0000011111110000"))
- Mask$(8)=Mki$(Val("&X0000111111111000"))
- Mask$(9)=Mki$(Val("&X0001111111111100"))
- Mask$(10)=Mki$(Val("&X0011111111110000"))
- Mask$(11)=Mki$(Val("&X0001111111000000"))
- Mask$(12)=Mki$(Val("&X0011111100000000"))
- Mask$(13)=Mki$(Val("&X0111110000000000"))
- Mask$(14)=Mki$(Val("&X1111000000000000"))
- Mask$(15)=Mki$(Val("&X1100000000000000"))
- ' put'em together sequentially...
- For I%=0 To 15
- Let Mouse$=Mouse$+Mask$(I%)
- Next I%
- For I%=0 To 15
- Let Mouse$=Mouse$+Cursor$(I%)
- Next I%
- Return
- Procedure Rbox(C1%,C2%,C3%,C4%)
- ' adapt for resolution
- C1%=C1%*Xf%
- C3%=C3%*Xf%
- C2%=C2%*Yf%
- C4%=C4%*Yf%
- @Prbox(C1%,C2%,C3%,C4%)
- @Write_color
- Rbox C1%,C2%,C3%,C4%
- Return
- Procedure Prbox(C1%,C2%,C3%,C4%)
- @Blank_it
- Prbox C1%+2,C2%+2,C3%+2,C4%+2
- Prbox C1%,C2%,C3%,C4%
- Return
- Procedure Border_box(C1%,C2%,C3%,C4%)
- ' adapt for resolution
- C1%=C1%*Xf%
- C3%=C3%*Xf%
- C2%=C2%*Yf%
- C4%=C4%*Yf%
- @Blank_it
- @Pbox(C1%,C2%,C3%,C4%)
- @Box(C1%,C2%,C3%,C4%)
- @Box(C1%+2,C2%+2,C3%-2,C4%-2)
- @Box(C1%+3,C2%+3,C3%-3,C4%-3)
- Return
- Procedure Rivet(C1%,C2%)
- @Blank_it
- Pcircle C1%,C2%,3
- @Write_color
- Circle C1%,C2%,2
- Return
-